The New MongoDB Analyzer In 10 Minutes or Less
Let's look at the brand new MongoDB Analyzer for Visual Studio 2022 to see how it uses Roslyn to ana ...View More
Extended Property Patterns in C# 10 and .NET 6 In 10 Minutes or Less
In C# 10, we can now use extended property patterns to simplify our code. See how in this 10-Minute ...View More
Null Parameter Checks in C# 10 and .NET 6 In 10 Minutes or Less
In C# 10, we can more easily check for null parameters in our methods. See how in this 10-Minute Tra ...View More
File Scoped Namespaces in C# 10 and .NET 6 In 10 Minutes or Less
In C# 10, we can now use file-scoped namespaces to reduce whitespace waste in our files. See how in ...View More
Global Usings in C# 10 and .NET 6 In 10 Minutes or Less
In C# 10, we have the ability to set global using in our application. See how in this 10-Minute Trai ...View More
Deconstructor Updates in C# 10 and .NET 6 In 10 Minutes or Less
In C# 10, there are new updates to the deconstructors, including mixed declaration and assignment. S ...View More
Constant Interpolation in C# 10 and .NET 6 In 10 Minutes or Less
In C# 10, we can now add string interpolation to constants (including attributes). See how in this 1 ...View More
Date and Time in C# 10 and .NET 6 In 10 Minutes or Less
In C# 10, we now have the DateOnly and TimeOnly types instead of just DateTime. See how to use them ...View More
What is Blazor
If you are a foodie like me, I am sure you will enjoy the recipes on my friend's YouTube channel. If ...View More
Step by Step Tutorial: Deserializing JSON using c# and json.net
This is a step by step tutorial detailing: what JSON is, why you would use it, how to install JSON.N ...View More